home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / angry / main.dir / 00013_Script_cursorPrep < prev    next >
Text File  |  1999-03-01  |  226b  |  13 lines

  1. global oldMouseP, cursorSpr
  2. global drops
  3.  
  4. on enterFrame
  5.   set oldMouseP = point(0,0)
  6.   set cursorSpr = 42
  7.   
  8.   set drops = []
  9.   repeat with a = 31  to 41
  10.     append drops, new(script "dropz", a)
  11.   end repeat
  12.   
  13. end